home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / RCSC.ZIP / LIB51 / STRLEN.C < prev    next >
C/C++ Source or Header  |  1997-01-12  |  124b  |  11 lines

  1. /*
  2. ** return length of s 
  3. */
  4.  
  5. strlen(s) char *s; {
  6.   char *t;
  7.   t = s - 1;
  8.   while (*++t) ;
  9.   return (t - s);
  10.   }
  11.